home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / Sprocket Framework DR2 / Sprocket Starter / SprocketStarter Code / SprocketStarterHeaders.pch < prev    next >
Text File  |  1996-06-15  |  2KB  |  96 lines

  1. /*
  2.  
  3.     File:        SprocketStarterHeaders.pch
  4.     Project:    Sample code for Sprocket Framework 1.1 (DR2), released 6/15/96
  5.     Contains:    Useful include files to speed up development
  6.     To Do:        Whatever your heart desires
  7.  
  8.     Sprocket Major Contributors:
  9.     ----------------------------
  10.     Dave Falkenburg, producer of Sprocket 1.0
  11.     Bill Hayden,     producer of Sprocket 1.1
  12.     Steve Sisak,     producer of the upcoming Sprocket 2.0
  13.     
  14.     Pete Alexander        Steve Falkenburg    Randy Thelen
  15.     Eric Berdahl        Nitin Ganatra        Chris K. Thomas
  16.     Marshall Clow        Dave Hershey        Leonard Rosenthal
  17.     Tim Craycroft        Dave Mark            Dean Yu
  18.     David denBoer        Gary Powell
  19.     Cameron Esfahani    Jon Summers            Apple Computer, Inc.
  20.         
  21.     Comments, Additions, or Corrections:
  22.     ------------------------------------
  23.     Bill Hayden, Nikol Software <nikol@codewell.com>
  24.  
  25. */
  26.  
  27.  
  28.  
  29. #if __POWERPC__
  30.     #pragma precompile_target "SprocketStarterHeadersPPC"
  31. #elif __CFM68K__
  32.     #pragma precompile_target "SprocketStarterHeadersCFM68K"
  33. #else
  34.     #pragma precompile_target "SprocketStarterHeaders68K"
  35. #endif
  36.  
  37.  
  38. #include "BuildConditionals.h"
  39.  
  40. #include <ConditionalMacros.h>
  41.  
  42. #ifndef UNIVERSAL_INTERFACES_VERSION
  43. #error You must use the Universal Headers 2.1 or later, and version 3.0 or later is recommended
  44. #endif
  45.  
  46. #include <Types.h>
  47. #include <Events.h>
  48. #include <Windows.h>
  49. #include <Dialogs.h>
  50. #include <LowMem.h>
  51.  
  52. #include <Folders.h>
  53. #include <Fonts.h>
  54. #include <Resources.h>
  55. #include <Errors.h>
  56. #include <TextUtils.h>
  57.  
  58. #include <Processes.h>
  59. #include <Sound.h>
  60.  
  61. /*
  62.  
  63. // Handy for seeing exactly what options you are getting:
  64.  
  65. #if (FOR_SYSTEM7_ONLY)
  66. #error Compiling FOR_SYSTEM7_ONLY
  67. #endif
  68.  
  69. #if (FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED)
  70. #error Compiling FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED
  71. #endif
  72.  
  73. #if (FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE)
  74. #error Compiling FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE
  75. #endif
  76.  
  77. #if (FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE)
  78. #error Compiling FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
  79. #endif
  80.  
  81. #if (FOR_SYSTEM8_COOPERATIVE)
  82. #error Compiling FOR_SYSTEM8_COOPERATIVE
  83. #endif
  84.  
  85. #if (FOR_SYSTEM8_PREEMPTIVE)
  86. #error Compiling FOR_SYSTEM8_PREEMPTIVE
  87. #endif
  88.  
  89. */
  90.  
  91. // Very temporary hack, until they fix this in the Universal Headers 3.0d3
  92. #ifndef gestaltSpeechRecognitionVersion
  93. enum {
  94.     gestaltSpeechRecognitionVersion = 'srtb'
  95. };
  96. #endif